home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue32 / construc / TEST.DPR < prev   
Encoding:
Text File  |  1998-03-08  |  243 b   |  15 lines

  1. program Test;
  2. uses
  3.   Forms,
  4.   Controls,
  5.   DrBobWiz in 'DrBobWiz.pas' {FormWizard};
  6.  
  7. begin
  8.   Application.Initialize;
  9.   with TFormWizard.Create(Application) do
  10.   try
  11.     if ShowModal = mrOK then Finish
  12.   finally
  13.     Free
  14.   end
  15. end.